翻訳と辞書
Words near each other
・ Java bytecode instruction listings
・ Java campaign of 1806–07
・ Java Caps
・ Java Card
・ Java Card OpenPlatform
・ Java Champions
・ Java chicken
・ Java class file
・ Java Class Library
・ Java Classloader
・ Java Code Coverage Tools
・ Java coffee
・ Java collections framework
・ Java Community Process
・ Java compiler
Java concurrency
・ Java Cryptography Architecture
・ Java Cryptography Extension
・ Java Data Mining
・ Java Data Objects
・ Java Database Connectivity
・ Java Decompiler
・ Java Desktop Integration Components
・ Java Desktop System
・ Java Development Kit
・ Java Device Test Suite
・ Java District
・ Java Dynamic Management Kit
・ Java EE application
・ Java EE Connector Architecture


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Java concurrency : ウィキペディア英語版
Java concurrency

The Java programming language and the Java virtual machine (JVM) have been designed to support concurrent programming, and all execution takes place in the context of threads. Objects and resources can be accessed by many separate threads; each thread has its own path of execution but can potentially access any object in the program. The programmer must ensure read and write access to objects is properly coordinated (or "synchronized") between threads. Thread synchronization ensures that objects are modified by only one thread at a time and that threads are prevented from accessing partially updated objects during modification by another thread. The Java language has built-in constructs to support this coordination.
== Processes and threads ==
Most implementations of the Java virtual machine run as a single process and in the Java programming language, concurrent programming is mostly concerned with threads (also called lightweight processes). Multiple processes can only be realized with multiple JVMs.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Java concurrency」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.